home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d10 / pcm_d1.arc / SETFIG.BAT < prev    next >
DOS Batch File  |  1989-06-12  |  2KB  |  86 lines

  1. echo off
  2. cls
  3. echo  
  4. echo                       ═════════════════════════════
  5. echo                       THE PERSONAL CONTACTS MANAGER
  6. echo                       ═════════════════════════════
  7. echo  
  8. echo                     Configuration for hard disk users
  9. echo                     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  10. echo  
  11. echo  
  12. echo           This program will place a correct CONFIG.SYS file
  13. echo           on to the root directory of your hard disk (C: drive).
  14. echo  
  15. echo           This will enable the Contacts Manager to run on your
  16. echo           particular computer. It contains the required "FILES=20"
  17. echo           statement.
  18. echo  
  19. echo           If you have an old CONFIG.SYS file on your hard disk
  20. echo           then this will be renamed to CONFIG.OLD.
  21. echo  
  22. echo  
  23. echo                 Now press your ENTER or ─┘ key to continue
  24. echo                                      OR
  25. echo                       CTRL and C together to terminate.
  26. echo   
  27. pause >NUL
  28. cls
  29.  
  30. prompt $p$g
  31.  
  32. c:
  33. cd c:\
  34. if exist config.sys copy config.sys config.old
  35.  
  36. cd c:\contacts
  37.  
  38. if not exist  config.sys  GOTO ASETTER
  39. if     exist  config.sys  copy   config.sys c:\config.sys
  40. GOTO END
  41.  
  42.  
  43. :ASETTER
  44. cls
  45.  
  46. echo  
  47. echo               Please insert your distribution DISK No. 1.
  48. echo  
  49. echo  
  50. echo          This disk should contain a correct "CONFIG.SYS" file.
  51. echo  
  52. echo  
  53. echo               Then press ENTER or ─┘ to continue please.
  54. echo  
  55. pause >NUL
  56.  
  57. copy a:config.sys c:
  58.  
  59.  
  60.  
  61.  
  62.  
  63. :END
  64.  
  65. cls
  66. c:
  67. cd c:\
  68. echo  
  69. echo                   Your CONFIG.SYS file should now be correct.
  70. echo  
  71. echo                   Note: There is more information on how you can
  72. echo                   set your CONFIG.SYS file. See the accompanying
  73. echo                   manual on this disk in the file "ReadMe2.txt".
  74. echo  
  75. echo                   Use "C:\> MANUAL.BAT" to print this documentation.
  76. echo  
  77. echo                   Now reboot the system before running the
  78. echo                   Contacts Manager again.
  79. echo  
  80. echo                   Press CTRL and ALT and DEL together, please.
  81. echo  
  82. echo  
  83.  
  84.  
  85. 
  86.